c210dc1ec28b18fd74390eb0d3d65498e40dcb2a,VUE2/src/tufts/vue/SearchTextField.java,PopupActionListener,actionPerformed,#ActionEvent#,409

Before Change


		public void actionPerformed(ActionEvent actionEvent) {
			if (VueResources.getString("search.popup.select.all").equals(
					actionEvent.getActionCommand().toString())) {
				if (Util.isMacTiger()) {
					fieldTxt.grabFocus();
					fieldTxt.selectAll();
				} else{

After Change


		public void actionPerformed(ActionEvent actionEvent) {
			if (VueResources.getString("search.popup.select.all").equals(
					actionEvent.getActionCommand().toString())) {
				if (Util.isMacTiger() || Util.isWindowsPlatform()) {
					fieldTxt.grabFocus();
					fieldTxt.selectAll();
				} else{
					thisTxtFld.grabFocus();
					thisTxtFld.selectAll();
				}
			} else if (VueResources.getString("search.popup.cut").equals(
					actionEvent.getActionCommand().toString())) {
				if (Util.isMacTiger() || Util.isWindowsPlatform()) {
					fieldTxt.cut();
				} else
					thisTxtFld.cut();